Factoring Matrices
May 2023
Singular Value Decomposition (SVD)
Let be an matrix. The Singular Value Decomposition (SVD) is
Where:
- is orthogonal with columns as unit eigenvectors of .
- is orthogonal with columns as unit eigenvectors of .
- is diagonal with singular values.
SVD Example
Let
Compute :
Unit eigenvectors:
Combine into
Then satisfies :
QR Decomposition
For a linearly independent matrix :
- orthogonal (orthonormal columns)
- upper triangular
Compute via Gram-Schmidt:
Example:
LU Decomposition
For square :
- lower triangular, upper triangular
- Augment and row reduce to get and .
Cholesky Decomposition
For symmetric positive definite :
Entries of :
Last updated on